home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ris_detect.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  58 lines

  1. # This script was written by Jeff Adams <jadams@netcentrics.com>;
  2. #
  3. #
  4. if(description)
  5. {
  6.  script_id(12231);
  7.  script_version("$Revision: 1.2 $");
  8.  name["english"] = "RIS Installation Check";
  9.  script_name(english:name["english"]);
  10.  desc["english"] = "
  11. This plugin checks if the equipment was installed via RIS.
  12.  
  13. Risk factor : None";
  14.  
  15.  script_description(english:desc["english"]);
  16.  summary["english"] = "Checks if the remote host was installed via RIS.";
  17.  script_summary(english:summary["english"]);
  18.  script_category(ACT_GATHER_INFO);
  19.  script_copyright(english:"This script is Copyright (C) 2004 Jorge Pinto And Nelson Gomes");
  20.  family["english"] = "Windows";
  21.  script_family(english:family["english"]);
  22.  script_dependencies("netbios_name_get.nasl", "smb_login.nasl", "smb_registry_access.nasl");
  23.  script_require_keys("SMB/name", "SMB/login", "SMB/password", "SMB/registry_access", "SMB/transport");
  24.  script_require_ports(139, 445);
  25.  script_require_keys("SMB/WindowsVersion");
  26.  exit(0);
  27. }
  28.  
  29.  
  30. include("smb_nt.inc");
  31.  
  32. services = get_kb_item("SMB/registry_access");
  33. if ( ! services ) exit(-2);
  34.  
  35. port = kb_smb_transport();
  36. if(!port)port = 139;
  37.  
  38.  
  39. #---------------------------------
  40. # My Main
  41. #---------------------------------
  42.  
  43. key = "SOFTWARE\Microsoft\Windows NT\CurrentVersion";
  44. item = "SourcePath";
  45. value = registry_get_sz(key:key, item:item);
  46.  
  47. if(!value) {
  48.         exit(-1);
  49. }
  50.  
  51. if( match(string:value, pattern:'*RemInst*')  ){
  52.         report = "The remote host was installed using RIS (Remote Installation Service).";
  53.         security_note(port:port, data:report);
  54.         exit(1);
  55. }
  56.  
  57. exit(0);
  58.